13f8dd159978ee7946f594b4fecb6df84e139081,opennms-rrd/opennms-rrd-jrobin/src/main/java/org/opennms/netmgt/rrd/jrobin/JRobinRrdStrategy.java,JRobinRrdStrategy,createGraphDef,#File#String[]#,302
Before Change
String definition = arg.substring("AREA:".length());
String area[] = tokenize(definition, ":", true);
String[] color = tokenize(area[0], "#", true);
graphDef.area(color[0], getColorOrInvisible(color, 1), (area.length > 1 ? area[1] : ""));
} else if (arg.startsWith("STACK:")) {
String definition = arg.substring("STACK:".length());
After Change
String definition = arg.substring("AREA:".length());
String area[] = tokenize(definition, ":", true);
String[] color = tokenize(area[0], "#", true);
if (area.length > 1) {
graphDef.area(color[0], getColorOrInvisible(color, 1), area[1]);
} else {
graphDef.area(color[0], getColorOrInvisible(color, 1));
}
} else if (arg.startsWith("STACK:")) {